home *** CD-ROM | disk | FTP | other *** search
- if(Number(this._y) + Number(_root.DOWN_SPEED) < _root.VERT_FLOOR)
- {
- setProperty(this, _Y, Number(this._y) + Number(_root.DOWN_SPEED));
- setProperty("_root.catchPointTop", _Y, Number(_root.catchPointTop._y) + Number(_root.DOWN_SPEED));
- setProperty("_root.catchPointBottom", _Y, Number(_root.catchPointBottom._y) + Number(_root.DOWN_SPEED));
- setProperty("_root.interface.burst" + _root.gCurrentChannel, _Y, Number(eval("_root.interface.burst" + _root.gCurrentChannel + "._y")) + Number(_root.DOWN_SPEED));
- play();
- }
- else
- {
- _root["interface"].upArrowBtnClip.gotoAndStop("active");
- if(_root.gCurrentChannel == _root.TOTAL_CHANNELS)
- {
- _root["interface"].leftArrowBtnClip.arrow_btn.enabled = true;
- }
- else if(_root.gCurrentChannel == 1)
- {
- _root["interface"].rightArrowBtnClip.arrow_btn.enabled = true;
- }
- else
- {
- _root["interface"].leftArrowBtnClip.arrow_btn.enabled = true;
- _root["interface"].rightArrowBtnClip.arrow_btn.enabled = true;
- }
- setProperty("_root.catchPointTop", _Y, _root.catchPointTop.vOrigY);
- setProperty("_root.catchPointBottom", _Y, _root.catchPointBottom.vOrigY);
- setProperty("_root.interface.burst" + _root.gCurrentChannel, _Y, eval("_root.interface.burst" + _root.gCurrentChannel + ".vOrigY"));
- setProperty(this, _Y, _root.VERT_FLOOR);
- _root.gOlieState = "still_left";
- gotoAndStop(2);
- }
-